home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / packet / terminal / pr4w32 / source / makefile < prev    next >
Encoding:
Makefile  |  1996-03-21  |  668 b   |  36 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. #define DEBUG 1
  4.  
  5. !include <ntwin32.mak>
  6.  
  7. all: srvdll.lib srvdll.dll 
  8.  
  9.  
  10. srvdll.obj: srvdll.c
  11.     $(cc) $(cflags) $(cvarsdll) $(cdebug) srvdll.c
  12.  
  13. # Update the import library
  14.  
  15. srvdll.lib: srvdll.obj srvdll.def
  16.     $(implib) -machine:$(CPU)     \
  17.     -def:srvdll.def        \
  18.     srvdll.obj             \
  19.     -out:srvdll.lib
  20.  
  21. # Update the dynamic link library
  22.  
  23. srvdll.dll: srvdll.obj srvdll.def
  24.     $(link) $(linkdebug) $(dlllflags)     \
  25.     -base:0x1C000000  \
  26.     -out:srvdll.dll   \
  27.     srvdll.exp srvdll.obj $(guilibsdll)
  28.  
  29. clean:
  30.      del *.obj
  31.      del *.lib
  32.      del *.dll
  33.      del *.exp
  34.  
  35.  
  36.